home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EuroCD 3
/
EuroCD 3.iso
/
Programming
/
Python1.4_Source
/
Objects
/
protos
/
tupleobject_protos.h
< prev
next >
Wrap
Text File
|
1998-06-24
|
561b
|
13 lines
/* tupleobject.c */
static void tupledealloc ( tupleobject *op );
static int tupleprint ( tupleobject *op , FILE *fp , int flags );
static object *tuplerepr ( tupleobject *v );
static int tuplecompare ( tupleobject *v , tupleobject *w );
static long tuplehash ( tupleobject *v );
static int tuplelength ( tupleobject *a );
static object *tupleitem ( tupleobject *a , int i );
static object *tupleslice ( tupleobject *a , int ilow , int ihigh );
static object *tupleconcat ( tupleobject *a , object *bb );
static object *tuplerepeat ( tupleobject *a , int n );